tsd:systemGeneratedIdentity
Purpose |
This element specifies at doctype level
whether reuse of ino:id 's is permitted.
|
Parent element |
tsd:logical |
Child elements |
None |
Attributes |
reuse |
Attributes
Name |
Type |
Description |
reuse |
xs:boolean |
This attribute indicates whether reuse of
ino:id 's is allowed. Default value:
"true".
|
Example
The example schema shown below prohibits the reuse of
ino:id
's for doctype D.
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:tsd="http://namespaces.softwareag.com/tamino/TaminoSchemaDefinition">
<xs:annotation>
<xs:appinfo>
<tsd:schemaInfo name="Reusage-Schema">
<tsd:collection name="Reusage"/>
<tsd:doctype name="D">
<tsd:logical>
<tsd:systemGeneratedIdentity reuse="false"/>
</tsd:logical>
</tsd:doctype>
</tsd:schemaInfo>
</xs:appinfo>
</xs:annotation>
<xs:element name="D"/>
</xs:schema>